]> shimmer.witbreuk.eu Git - UltimateKEYS.git/blob - autohotkey-v1.1/UltimateKEYS - 2021-07-08.ahk
Delete UltimateKEYS SW (Scroll Lock) - 2021-06-26.ahk
[UltimateKEYS.git] / autohotkey-v1.1 / UltimateKEYS - 2021-07-08.ahk
1 ; UltimateKEYS - 2021-07-08.ahk
2
3 ; Created by : Pieter Degroote
4
5 ; License : GNU General Public License Version 3
6
7 ; GitHub : https://github.com/pieter-degroote/UltimateKEYS
8
9
10 ; Requirements :
11
12 ; Keyboard layout (on Windows OS) : US QWERTY
13
14 ; AutoHotkey v1.1 (https://www.autohotkey.com/)
15
16
17
18 ListLines Off ; omits recently executed lines from history (for privacy and security)
19 #KeyHistory 0 ; disables the key history (for privacy and security)
20
21 SendMode Event ; allows chaining of customized key combinations (default)
22
23
24 ; Dead Key : Circumflex Accent
25
26 dkCircumflex := ComObjCreate("Scripting.Dictionary")
27 dkCircumflex.item["a"] := "{u+00e2}" ; (â) a with circumflex
28 dkCircumflex.item["A"] := "{u+00c2}" ; (Â) A with circumflex
29 dkCircumflex.item["c"] := "{u+0109}" ; (ĉ) c with circumflex
30 dkCircumflex.item["C"] := "{u+0108}" ; (Ĉ) C with circumflex
31 dkCircumflex.item["e"] := "{u+00ea}" ; (ê) e with circumflex
32 dkCircumflex.item["E"] := "{u+00ca}" ; (Ê) E with circumflex
33 dkCircumflex.item["g"] := "{u+011d}" ; (ĝ) g with circumflex
34 dkCircumflex.item["G"] := "{u+011c}" ; (Ĝ) G with circumflex
35 dkCircumflex.item["h"] := "{u+0125}" ; (ĥ) h with circumflex
36 dkCircumflex.item["H"] := "{u+0124}" ; (Ĥ) H with circumflex
37 dkCircumflex.item["i"] := "{u+00ee}" ; (î) i with circumflex
38 dkCircumflex.item["I"] := "{u+00ce}" ; (Î) I with circumflex
39 dkCircumflex.item["j"] := "{u+0135}" ; (ĵ) j with circumflex
40 dkCircumflex.item["J"] := "{u+0134}" ; (Ĵ) J with circumflex
41 dkCircumflex.item["o"] := "{u+00f4}" ; (ô) o with circumflex
42 dkCircumflex.item["O"] := "{u+00d4}" ; (Ô) O with circumflex
43 dkCircumflex.item["s"] := "{u+015d}" ; (ŝ) s with circumflex
44 dkCircumflex.item["S"] := "{u+015c}" ; (Ŝ) S with circumflex
45 dkCircumflex.item["u"] := "{u+00fb}" ; (û) u with circumflex
46 dkCircumflex.item["U"] := "{u+00db}" ; (Û) U with circumflex
47 dkCircumflex.item["w"] := "{u+0175}" ; (ŵ) w with circumflex
48 dkCircumflex.item["W"] := "{u+0174}" ; (Ŵ) W with circumflex
49 dkCircumflex.item["y"] := "{u+0177}" ; (ŷ) y with circumflex
50 dkCircumflex.item["Y"] := "{u+0176}" ; (Ŷ) Y with circumflex
51 dkCircumflex.item["z"] := "{u+1e91}" ; (ẑ) z with circumflex
52 dkCircumflex.item["Z"] := "{u+1e90}" ; (Ẑ) Z with circumflex
53 dkCircumflex.item["1"] := "{u+21d9}" ; (⇙) south west double arrow
54 dkCircumflex.item["2"] := "{u+21d3}" ; (⇓) downwards double arrow
55 dkCircumflex.item["3"] := "{u+21d8}" ; (⇘) south east double arrow
56 dkCircumflex.item["4"] := "{u+21d0}" ; (⇐) leftwards double arrow
57 dkCircumflex.item["5"] := "{u+21d5}" ; (⇕) up down double arrow
58 dkCircumflex.item["6"] := "{u+21d2}" ; (⇒) rightwards double arrow
59 dkCircumflex.item["7"] := "{u+21d6}" ; (⇖) north west double arrow
60 dkCircumflex.item["8"] := "{u+21d1}" ; (⇑) upwards double arrow
61 dkCircumflex.item["9"] := "{u+21d7}" ; (⇗) north east double arrow
62 dkCircumflex.item["0"] := "{u+21d4}" ; (⇔) left right double arrow
63 dkCircumflex.item["!"] := "{u+21d9}" ; (⇙) south west double arrow
64 dkCircumflex.item["@"] := "{u+21d3}" ; (⇓) downwards double arrow
65 dkCircumflex.item["#"] := "{u+21d8}" ; (⇘) south east double arrow
66 dkCircumflex.item["$"] := "{u+21d0}" ; (⇐) leftwards double arrow
67 dkCircumflex.item["%"] := "{u+21d5}" ; (⇕) up down double arrow
68 dkCircumflex.item["^"] := "{u+21d2}" ; (⇒) rightwards double arrow
69 dkCircumflex.item["&"] := "{u+21d6}" ; (⇖) north west double arrow
70 dkCircumflex.item["*"] := "{u+21d1}" ; (⇑) upwards double arrow
71 dkCircumflex.item["("] := "{u+21d7}" ; (⇗) north east double arrow
72 dkCircumflex.item[")"] := "{u+21d4}" ; (⇔) left right double arrow
73 dkCircumflex.item[" "] := "{^}" ; circumflex accent
74
75 ; Smart error-tolerant optimization for circumflex in French
76
77 dkCircumflex.item[chr(0x00e4)] := "{u+00e2}" ; (ä -> â) a with circumflex
78 dkCircumflex.item[chr(0x00c4)] := "{u+00c2}" ; (Ä -> Â) A with circumflex
79 dkCircumflex.item[chr(0x00eb)] := "{u+00ea}" ; (ë -> ê) e with circumflex
80 dkCircumflex.item[chr(0x00cb)] := "{u+00ca}" ; (Ë -> Ê) E with circumflex
81 dkCircumflex.item[chr(0x00ef)] := "{u+00ee}" ; (ï -> î) i with circumflex
82 dkCircumflex.item[chr(0x00cf)] := "{u+00ce}" ; (Ï -> Î) I with circumflex
83 dkCircumflex.item[chr(0x00f6)] := "{u+00f4}" ; (ö -> ô) o with circumflex
84 dkCircumflex.item[chr(0x00d6)] := "{u+00d4}" ; (Ö -> Ô) O with circumflex
85 dkCircumflex.item[chr(0x00fc)] := "{u+00fb}" ; (ü -> û) u with circumflex
86 dkCircumflex.item[chr(0x00dc)] := "{u+00db}" ; (Ü -> Û) U with circumflex
87
88
89 ; Dead Key : Caron
90
91 dkCaron := ComObjCreate("Scripting.Dictionary")
92 dkCaron.item["a"] := "{u+01ce}" ; (ǎ) a with caron
93 dkCaron.item["A"] := "{u+01cd}" ; (Ǎ) A with caron
94 dkCaron.item["c"] := "{u+010d}" ; (č) c with caron
95 dkCaron.item["C"] := "{u+010c}" ; (Č) C with caron
96 dkCaron.item["d"] := "{u+010f}" ; (ď) d with caron
97 dkCaron.item["D"] := "{u+010e}" ; (Ď) D with caron
98 dkCaron.item["e"] := "{u+011b}" ; (ě) e with caron
99 dkCaron.item["E"] := "{u+011a}" ; (Ě) E with caron
100 dkCaron.item["g"] := "{u+01e7}" ; (ǧ) g with caron
101 dkCaron.item["G"] := "{u+01e6}" ; (Ǧ) G with caron
102 dkCaron.item["h"] := "{u+021f}" ; (ȟ) h with caron
103 dkCaron.item["H"] := "{u+021e}" ; (Ȟ) H with caron
104 dkCaron.item["i"] := "{u+01d0}" ; (ǐ) i with caron
105 dkCaron.item["I"] := "{u+01cf}" ; (Ǐ) I with caron
106 dkCaron.item["j"] := "{u+01f0}" ; (ǰ) j with caron
107 dkCaron.item["k"] := "{u+01e9}" ; (ǩ) k with caron
108 dkCaron.item["K"] := "{u+01e8}" ; (Ǩ) K with caron
109 dkCaron.item["l"] := "{u+013e}" ; (ľ) l with caron
110 dkCaron.item["L"] := "{u+013d}" ; (Ľ) L with caron
111 dkCaron.item["n"] := "{u+0148}" ; (ň) n with caron
112 dkCaron.item["N"] := "{u+0147}" ; (Ň) N with caron
113 dkCaron.item["o"] := "{u+01d2}" ; (ǒ) o with caron
114 dkCaron.item["O"] := "{u+01d1}" ; (Ǒ) O with caron
115 dkCaron.item["r"] := "{u+0159}" ; (ř) r with caron
116 dkCaron.item["R"] := "{u+0158}" ; (Ř) R with caron
117 dkCaron.item["s"] := "{u+0161}" ; (š) s with caron
118 dkCaron.item["S"] := "{u+0160}" ; (Š) S with caron
119 dkCaron.item["t"] := "{u+0165}" ; (ť) t with caron
120 dkCaron.item["T"] := "{u+0164}" ; (Ť) T with caron
121 dkCaron.item["u"] := "{u+01d4}" ; (ǔ) u with caron
122 dkCaron.item["U"] := "{u+01d3}" ; (Ǔ) U with caron
123 dkCaron.item["v"] := "{u+01da}" ; (ǚ) u with diaeresis and caron
124 dkCaron.item["V"] := "{u+01d9}" ; (Ǚ) U with diaeresis and caron
125 dkCaron.item["z"] := "{u+017e}" ; (ž) z with caron
126 dkCaron.item["Z"] := "{u+017d}" ; (Ž) Z with caron
127 dkCaron.item["3"] := "{u+01ef}" ; (ǯ) small letter ezh with caron
128 dkCaron.item["#"] := "{u+01ee}" ; (Ǯ) capital letter ezh with caron
129 dkCaron.item["2"] := "{u+25bc}" ; (▼) black down-pointing triangle
130 dkCaron.item["@"] := "{u+25bd}" ; (▽) white down-pointing triangle
131 dkCaron.item["4"] := "{u+25c0}" ; (◀) black left-pointing triangle
132 dkCaron.item["$"] := "{u+25c1}" ; (◁) white left-pointing triangle
133 dkCaron.item["6"] := "{u+25b6}" ; (▶) black right-pointing triangle
134 dkCaron.item["^"] := "{u+25b7}" ; (▷) white right-pointing triangle
135 dkCaron.item["8"] := "{u+25b2}" ; (▲) black up-pointing triangle
136 dkCaron.item["*"] := "{u+25b3}" ; (△) white up-pointing triangle
137 dkCaron.item[" "] := "{u+02c7}" ; (ˇ) caron
138
139
140 ; Dead Key : Dot Above
141
142 dkDotAbove := ComObjCreate("Scripting.Dictionary")
143 dkDotAbove.item["a"] := "{u+0227}" ; (ȧ) a with dot above
144 dkDotAbove.item["A"] := "{u+0226}" ; (Ȧ) A with dot above
145 dkDotAbove.item["b"] := "{u+1e03}" ; (ḃ) b with dot above
146 dkDotAbove.item["B"] := "{u+1e02}" ; (Ḃ) B with dot above
147 dkDotAbove.item["c"] := "{u+010b}" ; (ċ) c with dot above
148 dkDotAbove.item["C"] := "{u+010a}" ; (Ċ) C with dot above
149 dkDotAbove.item["d"] := "{u+1e0b}" ; (ḋ) d with dot above
150 dkDotAbove.item["D"] := "{u+1e0a}" ; (Ḋ) D with dot above
151 dkDotAbove.item["e"] := "{u+0117}" ; (ė) e with dot above
152 dkDotAbove.item["E"] := "{u+0116}" ; (Ė) E with dot above
153 dkDotAbove.item["f"] := "{u+1e1f}" ; (ḟ) f with dot above
154 dkDotAbove.item["F"] := "{u+1e1e}" ; (Ḟ) F with dot above
155 dkDotAbove.item["g"] := "{u+0121}" ; (ġ) g with dot above
156 dkDotAbove.item["G"] := "{u+0120}" ; (Ġ) G with dot above
157 dkDotAbove.item["h"] := "{u+1e23}" ; (ḣ) h with dot above
158 dkDotAbove.item["H"] := "{u+1e22}" ; (Ḣ) H with dot above
159 dkDotAbove.item["i"] := "{u+0131}" ; (ı) dotless i (Turkish, Azerbaijani)
160 dkDotAbove.item["I"] := "{u+0130}" ; (İ) I with dot above (Turkish, Azerbaijani)
161 dkDotAbove.item["j"] := "{u+0237}" ; (ȷ) dotless j
162 dkDotAbove.item["l"] := "{u+0140}" ; (ŀ) l with middle dot
163 dkDotAbove.item["L"] := "{u+013f}" ; (Ŀ) L with middle dot
164 dkDotAbove.item["m"] := "{u+1e41}" ; (ṁ) m with dot above
165 dkDotAbove.item["M"] := "{u+1e40}" ; (Ṁ) M with dot above
166 dkDotAbove.item["n"] := "{u+1e45}" ; (ṅ) n with dot above
167 dkDotAbove.item["N"] := "{u+1e44}" ; (Ṅ) N with dot above
168 dkDotAbove.item["o"] := "{u+022f}" ; (ȯ) o with dot above
169 dkDotAbove.item["O"] := "{u+022e}" ; (Ȯ) O with dot above
170 dkDotAbove.item["p"] := "{u+1e57}" ; (ṗ) p with dot above
171 dkDotAbove.item["P"] := "{u+1e56}" ; (Ṗ) P with dot above
172 dkDotAbove.item["r"] := "{u+1e59}" ; (ṙ) r with dot above
173 dkDotAbove.item["R"] := "{u+1e58}" ; (Ṙ) R with dot above
174 dkDotAbove.item["s"] := "{u+1e61}" ; (ṡ) s with dot above
175 dkDotAbove.item["S"] := "{u+1e60}" ; (Ṡ) S with dot above
176 dkDotAbove.item["t"] := "{u+1e6b}" ; (ṫ) t with dot above
177 dkDotAbove.item["T"] := "{u+1e6a}" ; (Ṫ) T with dot above
178 dkDotAbove.item["u"] := "{u+016f}" ; (ů) u with ring above
179 dkDotAbove.item["U"] := "{u+016e}" ; (Ů) U with ring above
180 dkDotAbove.item["w"] := "{u+1e87}" ; (ẇ) w with dot above
181 dkDotAbove.item["W"] := "{u+1e86}" ; (Ẇ) W with dot above
182 dkDotAbove.item["x"] := "{u+1e8b}" ; (ẋ) x with dot above
183 dkDotAbove.item["X"] := "{u+1e8a}" ; (Ẋ) X with dot above
184 dkDotAbove.item["y"] := "{u+1e8f}" ; (ẏ) y with dot above
185 dkDotAbove.item["Y"] := "{u+1e8e}" ; (Ẏ) Y with dot above
186 dkDotAbove.item["z"] := "{u+017c}" ; (ż) z with dot above
187 dkDotAbove.item["Z"] := "{u+017b}" ; (Ż) Z with dot above
188 dkDotAbove.item["1"] := "{u+2199}" ; (↙) south west arrow
189 dkDotAbove.item["2"] := "{u+2193}" ; (↓) downwards arrow
190 dkDotAbove.item["3"] := "{u+2198}" ; (↘) south east arrow
191 dkDotAbove.item["4"] := "{u+2190}" ; (←) leftwards arrow
192 dkDotAbove.item["5"] := "{u+2195}" ; (↕) up down arrow
193 dkDotAbove.item["6"] := "{u+2192}" ; (→) rightwards arrow
194 dkDotAbove.item["7"] := "{u+2196}" ; (↖) north west arrow
195 dkDotAbove.item["8"] := "{u+2191}" ; (↑) upwards arrow
196 dkDotAbove.item["9"] := "{u+2197}" ; (↗) north east arrow
197 dkDotAbove.item["0"] := "{u+2194}" ; (↔) left right arrow
198 dkDotAbove.item["!"] := "{u+2199}" ; (↙) south west arrow
199 dkDotAbove.item["@"] := "{u+2193}" ; (↓) downwards arrow
200 dkDotAbove.item["#"] := "{u+2198}" ; (↘) south east arrow
201 dkDotAbove.item["$"] := "{u+2190}" ; (←) leftwards arrow
202 dkDotAbove.item["%"] := "{u+2195}" ; (↕) up down arrow
203 dkDotAbove.item["^"] := "{u+2192}" ; (→) rightwards arrow
204 dkDotAbove.item["&"] := "{u+2196}" ; (↖) north west arrow
205 dkDotAbove.item["*"] := "{u+2191}" ; (↑) upwards arrow
206 dkDotAbove.item["("] := "{u+2197}" ; (↗) north east arrow
207 dkDotAbove.item[")"] := "{u+2194}" ; (↔) left right arrow
208 dkDotAbove.item[chr(0x00e5)] := "{u+1e98}" ; (å -> ẘ) w with ring above
209 dkDotAbove.item[chr(0x00ff)] := "{u+1e99}" ; (ÿ -> ẙ) y with ring above
210 dkDotAbove.item[" "] := "{u+02d9}" ; (˙) dot above
211
212
213 ; Dead Key : Macron/Stroke
214
215 dkMacronStroke := ComObjCreate("Scripting.Dictionary")
216 dkMacronStroke.item["a"] := "{u+0101}" ; (ā) a with macron
217 dkMacronStroke.item["A"] := "{u+0100}" ; (Ā) A with macron
218 dkMacronStroke.item[chr(0x00e6)] := "{u+01e3}" ; (æ -> ǣ) ae with macron
219 dkMacronStroke.item[chr(0x00c6)] := "{u+01e2}" ; (Æ -> Ǣ) AE with macron
220 dkMacronStroke.item["b"] := "{u+0180}" ; (ƀ) b with stroke
221 dkMacronStroke.item["B"] := "{u+0243}" ; (Ƀ) B with stroke
222 dkMacronStroke.item["d"] := "{u+0111}" ; (đ) d with stroke
223 dkMacronStroke.item["D"] := "{u+0110}" ; (Đ) D with stroke
224 dkMacronStroke.item["e"] := "{u+0113}" ; (ē) e with macron
225 dkMacronStroke.item["E"] := "{u+0112}" ; (Ē) E with macron
226 dkMacronStroke.item["g"] := "{u+01e5}" ; (ǥ) g with stroke (Skolt Sami)
227 dkMacronStroke.item["G"] := "{u+01e4}" ; (Ǥ) G with stroke (Skolt Sami)
228 dkMacronStroke.item[chr(0x00e9)] := "{u+1e21}" ; (é -> ḡ) g with macron
229 dkMacronStroke.item[chr(0x00c9)] := "{u+1e20}" ; (É -> Ḡ) G with macron
230 dkMacronStroke.item["h"] := "{u+0127}" ; (ħ) h with stroke (Maltese)
231 dkMacronStroke.item["H"] := "{u+0126}" ; (Ħ) H with stroke (Maltese)
232 dkMacronStroke.item["i"] := "{u+012b}" ; (ī) i with macron
233 dkMacronStroke.item["I"] := "{u+012a}" ; (Ī) I with macron
234 dkMacronStroke.item[chr(0x00ef)] := "{u+0268}" ; (ï -> ɨ) i with stroke
235 dkMacronStroke.item[chr(0x00cf)] := "{u+0197}" ; (Ï -> Ɨ) I with stroke
236 dkMacronStroke.item["j"] := "{u+0249}" ; (ɉ) j with stroke
237 dkMacronStroke.item["J"] := "{u+0248}" ; (Ɉ) J with stroke
238 dkMacronStroke.item["l"] := "{u+0142}" ; (ł) l with stroke
239 dkMacronStroke.item["L"] := "{u+0141}" ; (Ł) L with stroke
240 dkMacronStroke.item[chr(0x00f8)] := "{u+1e3b}" ; (ø -> ḻ) l with line below
241 dkMacronStroke.item[chr(0x00d8)] := "{u+1e3a}" ; (Ø -> Ḻ) L with line below
242 dkMacronStroke.item["o"] := "{u+014d}" ; (ō) o with macron
243 dkMacronStroke.item["O"] := "{u+014c}" ; (Ō) O with macron
244 dkMacronStroke.item[chr(0x00f6)] := "{u+01ed}" ; (ö -> ǭ) o with ogonek and macron
245 dkMacronStroke.item[chr(0x00d6)] := "{u+01ec}" ; (Ö -> Ǭ) O with ogonek and macron
246 dkMacronStroke.item["p"] := "{u+1d7d}" ; (ᵽ) p with stroke
247 dkMacronStroke.item["P"] := "{u+2c63}" ; (Ᵽ) P with stroke
248 dkMacronStroke.item["r"] := "{u+024d}" ; (ɍ) r with stroke
249 dkMacronStroke.item["R"] := "{u+024c}" ; (Ɍ) R with stroke
250 dkMacronStroke.item["t"] := "{u+0167}" ; (ŧ) t with stroke
251 dkMacronStroke.item["T"] := "{u+0166}" ; (Ŧ) T with stroke
252 dkMacronStroke.item["u"] := "{u+016b}" ; (ū) u with macron
253 dkMacronStroke.item["U"] := "{u+016a}" ; (Ū) U with macron
254 dkMacronStroke.item[chr(0x00fc)] := "{u+0289}" ; (ü -> ʉ) u with bar
255 dkMacronStroke.item[chr(0x00dc)] := "{u+0244}" ; (Ü -> Ʉ) U with bar
256 dkMacronStroke.item["y"] := "{u+0233}" ; (ȳ) y with macron
257 dkMacronStroke.item["Y"] := "{u+0232}" ; (Ȳ) Y with macron
258 dkMacronStroke.item[chr(0x00ff)] := "{u+024f}" ; (ÿ -> ɏ) y with stroke
259 dkMacronStroke.item[chr(0x0178)] := "{u+024e}" ; (Ÿ -> Ɏ) Y with stroke
260 dkMacronStroke.item["z"] := "{u+01b6}" ; (ƶ) z with stroke
261 dkMacronStroke.item["Z"] := "{u+01b5}" ; (Ƶ) Z with stroke
262 dkMacronStroke.item["1"] := "{u+21b2}" ; (↲) downwards arrow with tip leftwards
263 dkMacronStroke.item["2"] := "{u+21f5}" ; (⇵) downwards arrow leftwards of upwards arrow
264 dkMacronStroke.item["3"] := "{u+21b3}" ; (↳) downwards arrow with tip rightwards
265 dkMacronStroke.item["4"] := "{u+21c6}" ; (⇆) leftwards arrow over rightwards arrow
266 dkMacronStroke.item["5"] := "{u+21a8}" ; (↨) up down arrow with base
267 dkMacronStroke.item["6"] := "{u+21c4}" ; (⇄) rightwards arrow over leftwards arrow
268 dkMacronStroke.item["7"] := "{u+21b0}" ; (↰) upwards arrow with tip leftwards
269 dkMacronStroke.item["8"] := "{u+21c5}" ; (⇅) upwards arrow leftwards of downwards arrow
270 dkMacronStroke.item["9"] := "{u+21b1}" ; (↱) upwards arrow with tip rightwards
271 dkMacronStroke.item["0"] := "{u+21b9}" ; (↹) leftwards arrow to bar over rightwards arrow to bar
272 dkMacronStroke.item["!"] := "{u+21b2}" ; (↲) downwards arrow with tip leftwards
273 dkMacronStroke.item["@"] := "{u+21f5}" ; (⇵) downwards arrow leftwards of upwards arrow
274 dkMacronStroke.item["#"] := "{u+21b3}" ; (↳) downwards arrow with tip rightwards
275 dkMacronStroke.item["$"] := "{u+21c6}" ; (⇆) leftwards arrow over rightwards arrow
276 dkMacronStroke.item["%"] := "{u+21a8}" ; (↨) up down arrow with base
277 dkMacronStroke.item["^"] := "{u+21c4}" ; (⇄) rightwards arrow over leftwards arrow
278 dkMacronStroke.item["&"] := "{u+21b0}" ; (↰) upwards arrow with tip leftwards
279 dkMacronStroke.item["*"] := "{u+21c5}" ; (⇅) upwards arrow leftwards of downwards arrow
280 dkMacronStroke.item["("] := "{u+21b1}" ; (↱) upwards arrow with tip rightwards
281 dkMacronStroke.item[")"] := "{u+21b9}" ; (↹) leftwards arrow to bar over rightwards arrow to bar
282 dkMacronStroke.item[" "] := "{u+00af}" ; (¯) macron
283
284
285 ; Dead Key : Cedilla/Ogonek
286
287 dkCedillaOgonek := ComObjCreate("Scripting.Dictionary")
288 dkCedillaOgonek.item["a"] := "{u+0105}" ; (ą) a with ogonek
289 dkCedillaOgonek.item["A"] := "{u+0104}" ; (Ą) A with ogonek
290 dkCedillaOgonek.item["c"] := "{u+00e7}" ; (ç) c with cedilla
291 dkCedillaOgonek.item["C"] := "{u+00c7}" ; (Ç) C with cedilla
292 dkCedillaOgonek.item["d"] := "{u+1e11}" ; (ḑ) d with cedilla
293 dkCedillaOgonek.item["D"] := "{u+1e10}" ; (Ḑ) D with cedilla
294 dkCedillaOgonek.item["e"] := "{u+0119}" ; (ę) e with ogonek
295 dkCedillaOgonek.item["E"] := "{u+0118}" ; (Ę) E with ogonek
296 dkCedillaOgonek.item[chr(0x00eb)] := "{u+0229}" ; (ë -> ȩ) e with cedilla
297 dkCedillaOgonek.item[chr(0x00cb)] := "{u+0228}" ; (Ë -> Ȩ) E with cedilla
298 dkCedillaOgonek.item["g"] := "{u+0123}" ; (ģ) g with cedilla
299 dkCedillaOgonek.item["G"] := "{u+0122}" ; (Ģ) G with cedilla
300 dkCedillaOgonek.item["h"] := "{u+1e29}" ; (ḩ) h with cedilla
301 dkCedillaOgonek.item["H"] := "{u+1e28}" ; (Ḩ) H with cedilla
302 dkCedillaOgonek.item["i"] := "{u+012f}" ; (į) i with ogonek
303 dkCedillaOgonek.item["I"] := "{u+012e}" ; (Į) I with ogonek
304 dkCedillaOgonek.item["k"] := "{u+0137}" ; (ķ) k with cedilla
305 dkCedillaOgonek.item["K"] := "{u+0136}" ; (Ķ) K with cedilla
306 dkCedillaOgonek.item["l"] := "{u+013c}" ; (ļ) l with cedilla
307 dkCedillaOgonek.item["L"] := "{u+013b}" ; (Ļ) L with cedilla
308 dkCedillaOgonek.item["n"] := "{u+0146}" ; (ņ) n with cedilla
309 dkCedillaOgonek.item["N"] := "{u+0145}" ; (Ņ) N with cedilla
310 dkCedillaOgonek.item["o"] := "{u+01eb}" ; (ǫ) o with ogonek
311 dkCedillaOgonek.item["O"] := "{u+01ea}" ; (Ǫ) O with ogonek
312 dkCedillaOgonek.item[chr(0x00f6)] := "{u+01ed}" ; (ö -> ǭ) o with ogonek and macron
313 dkCedillaOgonek.item[chr(0x00d6)] := "{u+01ec}" ; (Ö -> Ǭ) O with ogonek and macron
314 dkCedillaOgonek.item["r"] := "{u+0157}" ; (ŗ) r with cedilla
315 dkCedillaOgonek.item["R"] := "{u+0156}" ; (Ŗ) R with cedilla
316 dkCedillaOgonek.item["s"] := "{u+015f}" ; (ş) s with cedilla
317 dkCedillaOgonek.item["S"] := "{u+015e}" ; (Ş) S with cedilla
318 dkCedillaOgonek.item["t"] := "{u+0163}" ; (ţ) t with cedilla
319 dkCedillaOgonek.item["T"] := "{u+0162}" ; (Ţ) T with cedilla
320 dkCedillaOgonek.item["u"] := "{u+0173}" ; (ų) u with ogonek
321 dkCedillaOgonek.item["U"] := "{u+0172}" ; (Ų) U with ogonek
322 dkCedillaOgonek.item["1"] := "{u+2013}" ; (–) en dash
323 dkCedillaOgonek.item["2"] := "{u+2014}" ; (—) em dash
324 dkCedillaOgonek.item["3"] := "{u+2015}" ; (―) horizontal bar
325 dkCedillaOgonek.item["4"] := "{u+2010}" ; (‐) hyphen
326 dkCedillaOgonek.item["9"] := "{u+2012}" ; (‒) figure dash
327 dkCedillaOgonek.item["0"] := "{u+00ad}" ; (­) soft hyphen
328 dkCedillaOgonek.item["!"] := "{u+2013}" ; (–) en dash
329 dkCedillaOgonek.item["@"] := "{u+2014}" ; (—) em dash
330 dkCedillaOgonek.item["#"] := "{u+2015}" ; (―) horizontal bar
331 dkCedillaOgonek.item["$"] := "{u+2010}" ; (‐) hyphen
332 dkCedillaOgonek.item["("] := "{u+2012}" ; (‒) figure dash
333 dkCedillaOgonek.item[")"] := "{u+00ad}" ; (­) soft hyphen
334 dkCedillaOgonek.item["-"] := "{u+2011}" ; (‑) non-breaking hyphen
335 dkCedillaOgonek.item["."] := "{u+02db}" ; (˛) ogonek
336 dkCedillaOgonek.item[" "] := "{u+00b8}" ; (¸) cedilla
337
338
339 ; Dead Key : Breve/Special
340
341 dkBreveSpecial := ComObjCreate("Scripting.Dictionary")
342 dkBreveSpecial.item["a"] := "{u+0103}" ; (ă) a with breve
343 dkBreveSpecial.item["A"] := "{u+0102}" ; (Ă) A with breve
344 dkBreveSpecial.item[chr(0x00e4)] := "{u+0252}" ; (ä -> ɒ) latin small letter turned alpha
345 dkBreveSpecial.item[chr(0x00c4)] := "{u+2c70}" ; (Ä -> Ɒ) latin capital letter turned alpha
346 dkBreveSpecial.item["c"] := "{u+0188}" ; (ƈ) c with hook
347 dkBreveSpecial.item["C"] := "{u+0187}" ; (Ƈ) C with hook
348 dkBreveSpecial.item["d"] := "{u+0256}" ; (ɖ) small letter d with tail
349 dkBreveSpecial.item["D"] := "{u+0189}" ; (Ɖ) capital letter African D
350 dkBreveSpecial.item["e"] := "{u+0115}" ; (ĕ) e with breve
351 dkBreveSpecial.item["E"] := "{u+0114}" ; (Ĕ) E with breve
352 dkBreveSpecial.item[chr(0x00eb)] := "{u+01dd}" ; (ë -> ǝ) small turned e
353 dkBreveSpecial.item[chr(0x00cb)] := "{u+018e}" ; (Ë -> Ǝ) capital reversed E
354 dkBreveSpecial.item["f"] := "{u+0259}" ; (ə) small letter schwa (Azerbaijani)
355 dkBreveSpecial.item["F"] := "{u+018f}" ; (Ə) capital letter schwa (Azerbaijani)
356 dkBreveSpecial.item["g"] := "{u+011f}" ; (ğ) g with breve
357 dkBreveSpecial.item["G"] := "{u+011e}" ; (Ğ) G with breve
358 dkBreveSpecial.item[chr(0x00e9)] := "{u+0263}" ; (é -> ɣ) latin small gamma
359 dkBreveSpecial.item[chr(0x00c9)] := "{u+0194}" ; (É -> Ɣ) latin capital gamma
360 dkBreveSpecial.item["i"] := "{u+012d}" ; (ĭ) i with breve
361 dkBreveSpecial.item["I"] := "{u+012c}" ; (Ĭ) I with breve
362 dkBreveSpecial.item["j"] := "{u+0133}" ; (ij) ligature ij
363 dkBreveSpecial.item["J"] := "{u+0132}" ; (IJ) ligature IJ
364 dkBreveSpecial.item["k"] := "{u+0138}" ; (ĸ) small letter kra
365 dkBreveSpecial.item["m"] := "{u+0271}" ; (ɱ) m with hook
366 dkBreveSpecial.item["M"] := "{u+2c6e}" ; (Ɱ) M with hook
367 dkBreveSpecial.item["n"] := "{u+014b}" ; (ŋ) small letter eng(ma)
368 dkBreveSpecial.item["N"] := "{u+014a}" ; (Ŋ) capital letter eng(ma)
369 dkBreveSpecial.item[chr(0x00f1)] := "{u+0272}" ; (ñ -> ɲ) n with left hook
370 dkBreveSpecial.item[chr(0x00d1)] := "{u+019d}" ; (Ñ -> Ɲ) N with left hook
371 dkBreveSpecial.item["o"] := "{u+014f}" ; (ŏ) o with breve
372 dkBreveSpecial.item["O"] := "{u+014e}" ; (Ŏ) O with breve
373 dkBreveSpecial.item[chr(0x00f6)] := "{u+0254}" ; (ö -> ɔ) small open o
374 dkBreveSpecial.item[chr(0x00d6)] := "{u+0186}" ; (Ö -> Ɔ) capital open O
375 dkBreveSpecial.item["p"] := "{u+1e55}" ; (ṕ) p with acute
376 dkBreveSpecial.item["P"] := "{u+1e54}" ; (Ṕ) P with acute
377 dkBreveSpecial.item["s"] := "{u+0219}" ; (ș) s with comma below (Romanian)
378 dkBreveSpecial.item["S"] := "{u+0218}" ; (Ș) S with comma below (Romanian)
379 dkBreveSpecial.item[chr(0x00df)] := "{u+1e9e}" ; (ß -> ẞ) capital sharp S (capital Eszett)
380 dkBreveSpecial.item["t"] := "{u+021b}" ; (ț) t with comma below (Romanian)
381 dkBreveSpecial.item["T"] := "{u+021a}" ; (Ț) T with comma below (Romanian)
382 dkBreveSpecial.item["u"] := "{u+016d}" ; (ŭ) u with breve
383 dkBreveSpecial.item["U"] := "{u+016c}" ; (Ŭ) U with breve
384 dkBreveSpecial.item["v"] := "{u+028a}" ; (ʊ) latin small letter upsilon
385 dkBreveSpecial.item["V"] := "{u+01b1}" ; (Ʊ) latin capital letter upsilon
386 dkBreveSpecial.item["w"] := "{u+01bf}" ; (ƿ) small letter wynn
387 dkBreveSpecial.item["W"] := "{u+01f7}" ; (Ƿ) capital letter wynn
388 dkBreveSpecial.item[chr(0x00e5)] := "{u+2c73}" ; (å -> ⱳ) w with hook
389 dkBreveSpecial.item[chr(0x00c5)] := "{u+2c72}" ; (Å -> Ⱳ) W with hook
390 dkBreveSpecial.item["y"] := "{u+021d}" ; (ȝ) small letter yogh
391 dkBreveSpecial.item["Y"] := "{u+021c}" ; (Ȝ) capital letter yogh
392 dkBreveSpecial.item["3"] := "{u+0292}" ; (ʒ) small letter ezh
393 dkBreveSpecial.item["#"] := "{u+01b7}" ; (Ʒ) capital letter ezh
394 dkBreveSpecial.item[" "] := "{u+02d8}" ; (˘) breve
395
396
397 ; Dead Key : Acute Accent
398
399 dkAcuteAccent := ComObjCreate("Scripting.Dictionary")
400 dkAcuteAccent.item["a"] := "{u+00e1}" ; (á) a with acute
401 dkAcuteAccent.item["A"] := "{u+00c1}" ; (Á) A with acute
402 dkAcuteAccent.item[chr(0x00e4)] := "{u+0251}" ; (ä -> ɑ) latin small letter alpha
403 dkAcuteAccent.item[chr(0x00c4)] := "{u+2c6d}" ; (Ä -> Ɑ) latin capital letter alpha
404 dkAcuteAccent.item["b"] := "{u+0253}" ; (ɓ) b with hook
405 dkAcuteAccent.item["B"] := "{u+0181}" ; (Ɓ) B with hook
406 dkAcuteAccent.item["c"] := "{u+0107}" ; (ć) c with acute
407 dkAcuteAccent.item["C"] := "{u+0106}" ; (Ć) C with acute
408 dkAcuteAccent.item[chr(0x00e7)] := "{u+1e09}" ; (ç -> ḉ) c with cedilla and acute
409 dkAcuteAccent.item[chr(0x00c7)] := "{u+1e08}" ; (Ç -> Ḉ) C with cedilla and acute
410 dkAcuteAccent.item["d"] := "{u+0257}" ; (ɗ) d with hook
411 dkAcuteAccent.item["D"] := "{u+018a}" ; (Ɗ) D with hook
412 dkAcuteAccent.item["e"] := "{u+00e9}" ; (é) e with acute
413 dkAcuteAccent.item["E"] := "{u+00c9}" ; (É) E with acute
414 dkAcuteAccent.item[chr(0x00eb)] := "{u+025b}" ; (ë -> ɛ) small open e (latin small epsilon)
415 dkAcuteAccent.item[chr(0x00cb)] := "{u+0190}" ; (Ë -> Ɛ) capital open E (latin capital epsilon)
416 dkAcuteAccent.item["f"] := "{u+0192}" ; (ƒ) f with hook
417 dkAcuteAccent.item["F"] := "{u+0191}" ; (Ƒ) F with hook
418 dkAcuteAccent.item["g"] := "{u+01f5}" ; (ǵ) g with acute
419 dkAcuteAccent.item["G"] := "{u+01f4}" ; (Ǵ) G with acute
420 dkAcuteAccent.item[chr(0x00e9)] := "{u+0260}" ; (é -> ɠ) g with hook
421 dkAcuteAccent.item[chr(0x00c9)] := "{u+0193}" ; (É -> Ɠ) G with hook
422 dkAcuteAccent.item["h"] := "{u+0266}" ; (ɦ) h with hook
423 dkAcuteAccent.item["H"] := "{u+a7aa}" ; (Ɦ) H with hook
424 dkAcuteAccent.item[chr(0x00f9)] := "{u+a727}" ; (ù -> ꜧ) small letter heng
425 dkAcuteAccent.item[chr(0x00d9)] := "{u+a726}" ; (Ù -> Ꜧ) capital letter heng
426 dkAcuteAccent.item["i"] := "{u+00ed}" ; (í) i with acute
427 dkAcuteAccent.item["I"] := "{u+00cd}" ; (Í) I with acute
428 dkAcuteAccent.item["j"] := "{u+0133}" ; (ij) ligature ij
429 dkAcuteAccent.item["J"] := "{u+0132}" ; (IJ) ligature IJ
430 dkAcuteAccent.item["k"] := "{u+0199}" ; (ƙ) k with hook
431 dkAcuteAccent.item["K"] := "{u+0198}" ; (Ƙ) K with hook
432 dkAcuteAccent.item[chr(0x0153)] := "{u+1e31}" ; (œ -> ḱ) k with acute
433 dkAcuteAccent.item[chr(0x0152)] := "{u+1e30}" ; (Œ -> Ḱ) K with acute
434 dkAcuteAccent.item["l"] := "{u+013a}" ; (ĺ) l with acute
435 dkAcuteAccent.item["L"] := "{u+0139}" ; (Ĺ) L with acute
436 dkAcuteAccent.item["m"] := "{u+1e3f}" ; (ḿ) m with acute
437 dkAcuteAccent.item["M"] := "{u+1e3e}" ; (Ḿ) M with acute
438 dkAcuteAccent.item["n"] := "{u+0144}" ; (ń) n with acute
439 dkAcuteAccent.item["N"] := "{u+0143}" ; (Ń) N with acute
440 dkAcuteAccent.item["o"] := "{u+00f3}" ; (ó) o with acute
441 dkAcuteAccent.item["O"] := "{u+00d3}" ; (Ó) O with acute
442 dkAcuteAccent.item[chr(0x00f6)] := "{u+0151}" ; (ö -> ő) o with double acute
443 dkAcuteAccent.item[chr(0x00d6)] := "{u+0150}" ; (Ö -> Ő) O with double acute
444 dkAcuteAccent.item["p"] := "{u+01a5}" ; (ƥ) p with hook
445 dkAcuteAccent.item["P"] := "{u+01a4}" ; (Ƥ) P with hook
446 dkAcuteAccent.item["q"] := "{u+024b}" ; (ɋ) q with hook tail
447 dkAcuteAccent.item["Q"] := "{u+024a}" ; (Ɋ) Q with hook tail
448 dkAcuteAccent.item["r"] := "{u+0155}" ; (ŕ) r with acute
449 dkAcuteAccent.item["R"] := "{u+0154}" ; (Ŕ) R with acute
450 dkAcuteAccent.item[chr(0x00fd)] := "{u+027d}" ; (ý -> ɽ) r with tail
451 dkAcuteAccent.item[chr(0x00dd)] := "{u+2c64}" ; (Ý -> Ɽ) R with tail
452 dkAcuteAccent.item["s"] := "{u+015b}" ; (ś) s with acute
453 dkAcuteAccent.item["S"] := "{u+015a}" ; (Ś) S with acute
454 dkAcuteAccent.item[chr(0x00df)] := "{u+1e9e}" ; (ß -> ẞ) capital sharp S (capital Eszett)
455 dkAcuteAccent.item["t"] := "{u+01ad}" ; (ƭ) t with hook
456 dkAcuteAccent.item["T"] := "{u+01ac}" ; (Ƭ) T with hook
457 dkAcuteAccent.item["u"] := "{u+00fa}" ; (ú) u with acute
458 dkAcuteAccent.item["U"] := "{u+00da}" ; (Ú) U with acute
459 dkAcuteAccent.item[chr(0x00fc)] := "{u+0171}" ; (ü -> ű) u with double acute
460 dkAcuteAccent.item[chr(0x00dc)] := "{u+0170}" ; (Ü -> Ű) U with double acute
461 dkAcuteAccent.item["v"] := "{u+028b}" ; (ʋ) v with hook
462 dkAcuteAccent.item["V"] := "{u+01b2}" ; (Ʋ) V with hook
463 dkAcuteAccent.item[chr(0x00ec)] := "{u+028c}" ; (ì -> ʌ) latin small letter turned v
464 dkAcuteAccent.item[chr(0x00cc)] := "{u+0245}" ; (Ì -> Ʌ) latin capital letter turned V
465 dkAcuteAccent.item["w"] := "{u+1e83}" ; (ẃ) w with acute
466 dkAcuteAccent.item["W"] := "{u+1e82}" ; (Ẃ) W with acute
467 dkAcuteAccent.item["y"] := "{u+00fd}" ; (ý) y with acute
468 dkAcuteAccent.item["Y"] := "{u+00dd}" ; (Ý) Y with acute
469 dkAcuteAccent.item[chr(0x00ff)] := "{u+01b4}" ; (ÿ -> ƴ) y with hook
470 dkAcuteAccent.item[chr(0x0178)] := "{u+01b3}" ; (Ÿ -> Ƴ) Y with hook
471 dkAcuteAccent.item["z"] := "{u+017a}" ; (ź) z with acute
472 dkAcuteAccent.item["Z"] := "{u+0179}" ; (Ź) Z with acute
473 dkAcuteAccent.item[chr(0x00e0)] := "{u+0225}" ; (à -> ȥ) z with hook
474 dkAcuteAccent.item[chr(0x00c0)] := "{u+0224}" ; (À -> Ȥ) Z with hook
475 dkAcuteAccent.item[chr(0x00e5)] := "{u+01fb}" ; (å -> ǻ) a with ring above and acute
476 dkAcuteAccent.item[chr(0x00c5)] := "{u+01fa}" ; (Å -> Ǻ) A with ring above and acute
477 dkAcuteAccent.item[chr(0x00e6)] := "{u+01fd}" ; (æ -> ǽ) ae with acute
478 dkAcuteAccent.item[chr(0x00c6)] := "{u+01fc}" ; (Æ -> Ǽ) AE with acute
479 dkAcuteAccent.item[chr(0x00f8)] := "{u+01ff}" ; (ø -> ǿ) o with stroke and acute
480 dkAcuteAccent.item[chr(0x00d8)] := "{u+01fe}" ; (Ø -> Ǿ) O with stroke and acute
481 dkAcuteAccent.item["2"] := "{u+266b}" ; (♫) beamed eighth notes
482 dkAcuteAccent.item["3"] := "{u+2042}" ; (⁂) asterism
483 dkAcuteAccent.item["4"] := "{u+2605}" ; (★) black star
484 dkAcuteAccent.item["5"] := "{u+2606}" ; (☆) white star
485 dkAcuteAccent.item["6"] := "{u+273d}" ; (✽) heavy teardrop-spoked asterisk
486 dkAcuteAccent.item["7"] := "{u+273b}" ; (✻) teardrop-spoked asterisk
487 dkAcuteAccent.item["8"] := "{u+266a}" ; (♪) eighth note
488 dkAcuteAccent.item["9"] := "{u+2706}" ; (✆) telephone location sign
489 dkAcuteAccent.item["0"] := "{u+2709}" ; (✉) envelope
490 dkAcuteAccent.item["@"] := "{u+266b}" ; (♫) beamed eighth notes
491 dkAcuteAccent.item["#"] := "{u+2042}" ; (⁂) asterism
492 dkAcuteAccent.item["$"] := "{u+2605}" ; (★) black star
493 dkAcuteAccent.item["%"] := "{u+2606}" ; (☆) white star
494 dkAcuteAccent.item["^"] := "{u+273d}" ; (✽) heavy teardrop-spoked asterisk
495 dkAcuteAccent.item["&"] := "{u+273b}" ; (✻) teardrop-spoked asterisk
496 dkAcuteAccent.item["*"] := "{u+266a}" ; (♪) eighth note
497 dkAcuteAccent.item["("] := "{u+2706}" ; (✆) telephone location sign
498 dkAcuteAccent.item[")"] := "{u+2709}" ; (✉) envelope
499 dkAcuteAccent.item[" "] := "{u+00b4}" ; (´) acute accent
500
501
502 ; Dead Key : Diaeresis
503
504 dkDiaeresis := ComObjCreate("Scripting.Dictionary")
505 dkDiaeresis.item["a"] := "{u+00e4}" ; (ä) a with diaeresis
506 dkDiaeresis.item["A"] := "{u+00c4}" ; (Ä) A with diaeresis
507 dkDiaeresis.item["e"] := "{u+00eb}" ; (ë) e with diaeresis
508 dkDiaeresis.item["E"] := "{u+00cb}" ; (Ë) E with diaeresis
509 dkDiaeresis.item["h"] := "{u+1e27}" ; (ḧ) h with diaeresis
510 dkDiaeresis.item["H"] := "{u+1e26}" ; (Ḧ) H with diaeresis
511 dkDiaeresis.item["i"] := "{u+00ef}" ; (ï) i with diaeresis
512 dkDiaeresis.item["I"] := "{u+00cf}" ; (Ï) I with diaeresis
513 dkDiaeresis.item["o"] := "{u+00f6}" ; (ö) o with diaeresis
514 dkDiaeresis.item["O"] := "{u+00d6}" ; (Ö) O with diaeresis
515 dkDiaeresis.item["t"] := "{u+1e97}" ; (ẗ) t with diaeresis
516 dkDiaeresis.item["u"] := "{u+00fc}" ; (ü) u with diaeresis
517 dkDiaeresis.item["U"] := "{u+00dc}" ; (Ü) U with diaeresis
518 dkDiaeresis.item["w"] := "{u+1e85}" ; (ẅ) w with diaeresis
519 dkDiaeresis.item["W"] := "{u+1e84}" ; (Ẅ) W with diaeresis
520 dkDiaeresis.item["x"] := "{u+1e8d}" ; (ẍ) x with diaeresis
521 dkDiaeresis.item["X"] := "{u+1e8c}" ; (Ẍ) X with diaeresis
522 dkDiaeresis.item["y"] := "{u+00ff}" ; (ÿ) y with diaeresis
523 dkDiaeresis.item["Y"] := "{u+0178}" ; (Ÿ) Y with diaeresis
524 dkDiaeresis.item["s"] := "{u+0283}" ; (ʃ) small letter esh
525 dkDiaeresis.item["S"] := "{u+01a9}" ; (Ʃ) capital letter esh
526 dkDiaeresis.item[chr(0x00df)] := "{u+017f}" ; (ß -> ſ) small long s
527 dkDiaeresis.item[" "] := "{u+00a8}" ; (¨) diaeresis
528
529
530 ; Dead Key : Grave Accent
531
532 dkGraveAccent := ComObjCreate("Scripting.Dictionary")
533 dkGraveAccent.item["a"] := "{u+00e0}" ; (à) a with grave
534 dkGraveAccent.item["A"] := "{u+00c0}" ; (À) A with grave
535 dkGraveAccent.item["e"] := "{u+00e8}" ; (è) e with grave
536 dkGraveAccent.item["E"] := "{u+00c8}" ; (È) E with grave
537 dkGraveAccent.item["i"] := "{u+00ec}" ; (ì) i with grave
538 dkGraveAccent.item["I"] := "{u+00cc}" ; (Ì) I with grave
539 dkGraveAccent.item["n"] := "{u+01f9}" ; (ǹ) n with grave
540 dkGraveAccent.item["N"] := "{u+01f8}" ; (Ǹ) N with grave
541 dkGraveAccent.item["o"] := "{u+00f2}" ; (ò) o with grave
542 dkGraveAccent.item["O"] := "{u+00d2}" ; (Ò) O with grave
543 dkGraveAccent.item["u"] := "{u+00f9}" ; (ù) u with grave
544 dkGraveAccent.item["U"] := "{u+00d9}" ; (Ù) U with grave
545 dkGraveAccent.item["w"] := "{u+1e81}" ; (ẁ) w with grave
546 dkGraveAccent.item["W"] := "{u+1e80}" ; (Ẁ) W with grave
547 dkGraveAccent.item["y"] := "{u+1ef3}" ; (ỳ) y with grave
548 dkGraveAccent.item["Y"] := "{u+1ef2}" ; (Ỳ) Y with grave
549 dkGraveAccent.item["c"] := "{u+2663}" ; (♣) black club suit
550 dkGraveAccent.item["C"] := "{u+2667}" ; (♧) white club suit
551 dkGraveAccent.item["d"] := "{u+2666}" ; (♦) black diamond suit
552 dkGraveAccent.item["D"] := "{u+2662}" ; (♢) white diamond suit
553 dkGraveAccent.item["h"] := "{u+2665}" ; (♥) black heart suit
554 dkGraveAccent.item["H"] := "{u+2661}" ; (♡) white heart suit
555 dkGraveAccent.item["s"] := "{u+2660}" ; (♠) black spade suit
556 dkGraveAccent.item["S"] := "{u+2664}" ; (♤) white spade suit
557 dkGraveAccent.item["1"] := "{u+2002}" ; en space
558 dkGraveAccent.item["2"] := "{u+2003}" ; em space
559 dkGraveAccent.item["3"] := "{u+2004}" ; three-per-em space
560 dkGraveAccent.item["4"] := "{u+2005}" ; four-per-em space
561 dkGraveAccent.item["5"] := "{u+2008}" ; punctuation space
562 dkGraveAccent.item["6"] := "{u+2006}" ; six-per-em space
563 dkGraveAccent.item["7"] := "{u+2009}" ; thin space
564 dkGraveAccent.item["8"] := "{u+200a}" ; hair space
565 dkGraveAccent.item["9"] := "{u+2007}" ; figure space
566 dkGraveAccent.item["0"] := "{u+200b}" ; zero-width space
567 dkGraveAccent.item["!"] := "{u+2002}" ; en space
568 dkGraveAccent.item["@"] := "{u+2003}" ; em space
569 dkGraveAccent.item["#"] := "{u+2004}" ; three-per-em space
570 dkGraveAccent.item["$"] := "{u+2005}" ; four-per-em space
571 dkGraveAccent.item["%"] := "{u+2008}" ; punctuation space
572 dkGraveAccent.item["^"] := "{u+2006}" ; six-per-em space
573 dkGraveAccent.item["&"] := "{u+2009}" ; thin space
574 dkGraveAccent.item["*"] := "{u+200a}" ; hair space
575 dkGraveAccent.item["("] := "{u+2007}" ; figure space
576 dkGraveAccent.item[")"] := "{u+200b}" ; zero-width space
577 dkGraveAccent.item["-"] := "{u+00a0}" ; non-breaking space
578 dkGraveAccent.item["="] := "{u+202f}" ; narrow no-break space
579 dkGraveAccent.item[" "] := "``" ; grave accent
580
581
582 ; Dead Key : Tilde
583
584 dkTilde := ComObjCreate("Scripting.Dictionary")
585 dkTilde.item["a"] := "{u+00e3}" ; (ã) a with tilde
586 dkTilde.item["A"] := "{u+00c3}" ; (Ã) A with tilde
587 dkTilde.item["e"] := "{u+1ebd}" ; (ẽ) e with tilde
588 dkTilde.item["E"] := "{u+1ebc}" ; (Ẽ) E with tilde
589 dkTilde.item["i"] := "{u+0129}" ; (ĩ) i with tilde
590 dkTilde.item["I"] := "{u+0128}" ; (Ĩ) I with tilde
591 dkTilde.item["n"] := "{u+00f1}" ; (ñ) n with tilde
592 dkTilde.item["N"] := "{u+00d1}" ; (Ñ) N with tilde
593 dkTilde.item["o"] := "{u+00f5}" ; (õ) o with tilde
594 dkTilde.item["O"] := "{u+00d5}" ; (Õ) O with tilde
595 dkTilde.item["u"] := "{u+0169}" ; (ũ) u with tilde
596 dkTilde.item["U"] := "{u+0168}" ; (Ũ) U with tilde
597 dkTilde.item["v"] := "{u+1e7d}" ; (ṽ) v with tilde
598 dkTilde.item["V"] := "{u+1e7c}" ; (Ṽ) V with tilde
599 dkTilde.item["y"] := "{u+1ef9}" ; (ỹ) y with tilde
600 dkTilde.item["Y"] := "{u+1ef8}" ; (Ỹ) Y with tilde
601 dkTilde.item["g"] := "{u+ab36}" ; (ꬶ) cross-tailed g
602 dkTilde.item["h"] := "{u+0267}" ; (ɧ) small letter heng with hook
603 dkTilde.item["1"] := "{u+2000}" ; en quad
604 dkTilde.item["2"] := "{u+2001}" ; em quad
605 dkTilde.item["!"] := "{u+2000}" ; en quad
606 dkTilde.item["@"] := "{u+2001}" ; em quad
607 dkTilde.item[" "] := "~" ; tilde
608
609
610 ; Dead Key : Not Sign
611
612 dkNotSign := ComObjCreate("Scripting.Dictionary")
613 dkNotSign.item["a"] := "{u+00aa}" ; (ª) feminine ordinal indicator (Spanish, Portuguese, Italian, Galician)
614 dkNotSign.item["A"] := "{u+00aa}" ; (ª) feminine ordinal indicator (Spanish, Portuguese, Italian, Galician)
615 dkNotSign.item[chr(0x00e4)] := "{u+214d}" ; (ä -> ⅍) aktieselskab
616 dkNotSign.item[chr(0x00c4)] := "{u+214d}" ; (Ä -> ⅍) aktieselskab
617 dkNotSign.item["b"] := "{u+2022}" ; (•) bullet
618 dkNotSign.item["B"] := "{u+25e6}" ; (◦) white bullet
619 dkNotSign.item["c"] := "{u+00a4}" ; (¤) currency sign
620 dkNotSign.item["C"] := "{u+00a4}" ; (¤) currency sign
621 dkNotSign.item[chr(0x00e7)] := "{u+2105}" ; (ç -> ℅) care of
622 dkNotSign.item[chr(0x00c7)] := "{u+2105}" ; (Ç -> ℅) care of
623 dkNotSign.item["d"] := "{u+22c4}" ; (⋄) diamond operator
624 dkNotSign.item["D"] := "{u+22c4}" ; (⋄) diamond operator
625 dkNotSign.item["e"] := "{u+212e}" ; (℮) estimated symbol
626 dkNotSign.item["E"] := "{u+2709}" ; (✉) envelope
627 dkNotSign.item["f"] := "{u+2640}" ; (♀) Venus symbol (female)
628 dkNotSign.item["F"] := "{u+2640}" ; (♀) Venus symbol (female)
629 dkNotSign.item["h"] := "{u+2766}" ; (❦) floral heart
630 dkNotSign.item["H"] := "{u+2767}" ; (❧) rotated floral heart bullet
631 dkNotSign.item["l"] := "{u+2113}" ; (ℓ) script small l
632 dkNotSign.item["L"] := "{u+2112}" ; (ℒ) Laplace transform
633 dkNotSign.item["m"] := "{u+2642}" ; (♂) Mars symbol (male)
634 dkNotSign.item["M"] := "{u+2642}" ; (♂) Mars symbol (male)
635 dkNotSign.item["n"] := "{u+00ac}" ; (¬) not sign
636 dkNotSign.item["N"] := "{u+00ac}" ; (¬) not sign
637 dkNotSign.item["o"] := "{u+00ba}" ; (º) masculine ordinal indicator (Spanish, Portuguese, Italian, Galician)
638 dkNotSign.item["O"] := "{u+00ba}" ; (º) masculine ordinal indicator (Spanish, Portuguese, Italian, Galician)
639 dkNotSign.item[chr(0x00f6)] := "{u+2126}" ; (ö -> Ω) ohm sign (backwards compatibility)
640 dkNotSign.item[chr(0x00d6)] := "{u+2126}" ; (Ö -> Ω) ohm sign (backwards compatibility)
641 dkNotSign.item["p"] := "{u+2117}" ; (℗) sound recording copyright
642 dkNotSign.item["P"] := "{u+2117}" ; (℗) sound recording copyright
643 dkNotSign.item["q"] := "{u+201a}" ; (‚) single low-9 quotation mark
644 dkNotSign.item["Q"] := "{u+201a}" ; (‚) single low-9 quotation mark
645 dkNotSign.item["r"] := "{u+00ae}" ; (®) registered sign
646 dkNotSign.item["R"] := "{u+2619}" ; (☙) reversed rotated floral heart bullet
647 dkNotSign.item["s"] := "{u+2120}" ; (℠) service mark
648 dkNotSign.item["S"] := "{u+2120}" ; (℠) service mark
649 dkNotSign.item["t"] := "{u+2122}" ; (™) trademark symbol
650 dkNotSign.item["T"] := "{u+2706}" ; (✆) telephone location sign
651 dkNotSign.item["u"] := "{u+2610}" ; (☐) ballot box
652 dkNotSign.item["U"] := "{u+2610}" ; (☐) ballot box
653 dkNotSign.item["v"] := "{u+2713}" ; (✓) check mark
654 dkNotSign.item["V"] := "{u+2714}" ; (✔) heavy check mark
655 dkNotSign.item["x"] := "{u+2717}" ; (✗) ballot x
656 dkNotSign.item["X"] := "{u+2718}" ; (✘) heavy ballot x
657 dkNotSign.item["y"] := "{u+2611}" ; (☑) ballot box with check
658 dkNotSign.item["Y"] := "{u+2612}" ; (☒) ballot box with x
659 dkNotSign.item["1"] := "{u+2116}" ; (№) numero sign
660 dkNotSign.item["2"] := "{u+00bd}" ; (½) vulgar fraction 1/2
661 dkNotSign.item["3"] := "{u+2153}" ; (⅓) vulgar fraction 1/3
662 dkNotSign.item["4"] := "{u+00bc}" ; (¼) vulgar fraction 1/4
663 dkNotSign.item["5"] := "{u+2154}" ; (⅔) vulgar fraction 2/3
664 dkNotSign.item["6"] := "{u+00be}" ; (¾) vulgar fraction 3/4
665 dkNotSign.item["7"] := "{u+215b}" ; (⅛) vulgar fraction 1/8
666 dkNotSign.item["8"] := "{u+215c}" ; (⅜) vulgar fraction 3/8
667 dkNotSign.item["9"] := "{u+215d}" ; (⅝) vulgar fraction 5/8
668 dkNotSign.item["0"] := "{u+215e}" ; (⅞) vulgar fraction 7/8
669 dkNotSign.item["!"] := "{u+2116}" ; (№) numero sign
670 dkNotSign.item["@"] := "{u+00bd}" ; (½) vulgar fraction 1/2
671 dkNotSign.item["#"] := "{u+2153}" ; (⅓) vulgar fraction 1/3
672 dkNotSign.item["$"] := "{u+00bc}" ; (¼) vulgar fraction 1/4
673 dkNotSign.item["%"] := "{u+2154}" ; (⅔) vulgar fraction 2/3
674 dkNotSign.item["^"] := "{u+00be}" ; (¾) vulgar fraction 3/4
675 dkNotSign.item["&"] := "{u+215b}" ; (⅛) vulgar fraction 1/8
676 dkNotSign.item["*"] := "{u+215c}" ; (⅜) vulgar fraction 3/8
677 dkNotSign.item["("] := "{u+215d}" ; (⅝) vulgar fraction 5/8
678 dkNotSign.item[")"] := "{u+215e}" ; (⅞) vulgar fraction 7/8
679 dkNotSign.item["-"] := "{u+2043}" ; (⁃) hyphen bullet
680 dkNotSign.item["="] := "{u+2023}" ; (‣) triangular bullet
681 dkNotSign.item[";"] := "{u+263a}" ; (☺) white smiling face
682 dkNotSign.item[":"] := "{u+263b}" ; (☻) black smiling face
683 dkNotSign.item["/"] := "{u+203c}" ; (‼) double exclamation mark
684 dkNotSign.item["?"] := "{u+203d}" ; (‽) interrobang
685 dkNotSign.item[chr(0x00bf)] := "{u+2e18}" ; (¿ -> ⸘) inverted interrobang
686 dkNotSign.item[chr(0x2026)] := "{u+2e2e}" ; (… -> ⸮) reversed question mark
687 dkNotSign.item["\"] := "{u+205e}" ; (⁞) vertical four dots
688 dkNotSign.item["|"] := "{u+205e}" ; (⁞) vertical four dots
689 dkNotSign.item[" "] := "{u+00ac}" ; (¬) not sign
690
691
692 ; Dead Key : Broken Bar
693
694 dkBrokenBar := ComObjCreate("Scripting.Dictionary")
695 dkBrokenBar.item["a"] := "{u+20b3}" ; (₳) Argentine austral
696 dkBrokenBar.item["A"] := "{u+20b3}" ; (₳) Argentine austral
697 dkBrokenBar.item["b"] := "{u+20bf}" ; (₿) bitcoin
698 dkBrokenBar.item["B"] := "{u+20bf}" ; (₿) bitcoin
699 dkBrokenBar.item["c"] := "{u+20a1}" ; (₡) Costa Rican colón
700 dkBrokenBar.item["C"] := "{u+20b5}" ; (₵) Ghanaian cedi
701 dkBrokenBar.item[chr(0x00e7)] := "{u+20a2}" ; (ç -> ₢) Brazilian cruzeiro
702 dkBrokenBar.item[chr(0x00c7)] := "{u+20a2}" ; (Ç -> ₢) Brazilian cruzeiro
703 dkBrokenBar.item["d"] := "{u+20ab}" ; (₫) Vietnamese dong
704 dkBrokenBar.item["D"] := "{u+20af}" ; (₯) Greek drachma
705 dkBrokenBar.item["f"] := "{u+20a3}" ; (₣) French franc
706 dkBrokenBar.item["F"] := "{u+20a3}" ; (₣) French franc
707 dkBrokenBar.item["g"] := "{u+20b2}" ; (₲) Paraguayan guaraní
708 dkBrokenBar.item["G"] := "{u+20b2}" ; (₲) Paraguayan guaraní
709 dkBrokenBar.item["h"] := "{u+20b4}" ; (₴) Ukrainian hryvnia
710 dkBrokenBar.item["H"] := "{u+20b4}" ; (₴) Ukrainian hryvnia
711 dkBrokenBar.item["k"] := "{u+20ad}" ; (₭) Laotian kip
712 dkBrokenBar.item["K"] := "{u+20ad}" ; (₭) Laotian kip
713 dkBrokenBar.item["l"] := "{u+20ba}" ; (₺) Turkish lira
714 dkBrokenBar.item["L"] := "{u+20be}" ; (₾) Georgian lari
715 dkBrokenBar.item[chr(0x00f8)] := "{u+20a4}" ; (ø -> ₤) lira
716 dkBrokenBar.item[chr(0x00d8)] := "{u+20b6}" ; (Ø -> ₶) livre tournois
717 dkBrokenBar.item["m"] := "{u+20bc}" ; (₼) Azerbaijani manat
718 dkBrokenBar.item["M"] := "{u+20a5}" ; (₥) mill sign
719 dkBrokenBar.item["n"] := "{u+20a6}" ; (₦) Nigerian naira
720 dkBrokenBar.item["N"] := "{u+20a6}" ; (₦) Nigerian naira
721 dkBrokenBar.item["p"] := "{u+20b1}" ; (₱) Philippine peso
722 dkBrokenBar.item["P"] := "{u+20b1}" ; (₱) Philippine peso
723 dkBrokenBar.item["r"] := "{u+20b9}" ; (₹) Indian rupee
724 dkBrokenBar.item["R"] := "{u+20bd}" ; (₽) Russian ruble
725 dkBrokenBar.item["s"] := "{u+20aa}" ; (₪) Israeli new shekel
726 dkBrokenBar.item["S"] := "{u+20b7}" ; (₷) spesmilo
727 dkBrokenBar.item["t"] := "{u+20ae}" ; (₮) Mongolian tögrög (tugrik)
728 dkBrokenBar.item["T"] := "{u+20b8}" ; (₸) Kazakh tenge
729 dkBrokenBar.item["w"] := "{u+20a9}" ; (₩) South Korean won
730 dkBrokenBar.item["W"] := "{u+20a9}" ; (₩) South Korean won
731 dkBrokenBar.item["o"] := "{u+01a1}" ; (ơ) o with horn
732 dkBrokenBar.item["O"] := "{u+01a0}" ; (Ơ) O with horn
733 dkBrokenBar.item["u"] := "{u+01b0}" ; (ư) u with horn
734 dkBrokenBar.item["U"] := "{u+01af}" ; (Ư) U with horn
735 dkBrokenBar.item["\"] := "{u+00a6}" ; (¦) broken bar
736 dkBrokenBar.item["|"] := "{u+00a6}" ; (¦) broken bar
737 dkBrokenBar.item[" "] := "{u+00a6}" ; (¦) broken bar
738
739
740 ; Dead Key : Greek Alphabet
741
742 dkGreekAlphabet := ComObjCreate("Scripting.Dictionary")
743 dkGreekAlphabet.item["a"] := "{u+03b1}" ; (α) small alpha
744 dkGreekAlphabet.item["A"] := "{u+0391}" ; (Α) capital alpha
745 dkGreekAlphabet.item["b"] := "{u+03b2}" ; (β) small beta
746 dkGreekAlphabet.item["B"] := "{u+0392}" ; (Β) capital beta
747 dkGreekAlphabet.item["v"] := "{u+03b2}" ; (β) small beta
748 dkGreekAlphabet.item["V"] := "{u+0392}" ; (Β) capital beta
749 dkGreekAlphabet.item["g"] := "{u+03b3}" ; (γ) small gamma
750 dkGreekAlphabet.item["G"] := "{u+0393}" ; (Γ) capital gamma
751 dkGreekAlphabet.item["d"] := "{u+03b4}" ; (δ) small delta
752 dkGreekAlphabet.item["D"] := "{u+0394}" ; (Δ) capital delta
753 dkGreekAlphabet.item["e"] := "{u+03b5}" ; (ε) small epsilon
754 dkGreekAlphabet.item["E"] := "{u+0395}" ; (Ε) capital epsilon
755 dkGreekAlphabet.item["z"] := "{u+03b6}" ; (ζ) small zeta
756 dkGreekAlphabet.item["Z"] := "{u+0396}" ; (Ζ) capital zeta
757 dkGreekAlphabet.item["h"] := "{u+03b7}" ; (η) small eta
758 dkGreekAlphabet.item["H"] := "{u+0397}" ; (Η) capital eta
759 dkGreekAlphabet.item["j"] := "{u+03b8}" ; (θ) small theta
760 dkGreekAlphabet.item["J"] := "{u+0398}" ; (Θ) capital theta
761 dkGreekAlphabet.item["i"] := "{u+03b9}" ; (ι) small iota
762 dkGreekAlphabet.item["I"] := "{u+0399}" ; (Ι) capital iota
763 dkGreekAlphabet.item["k"] := "{u+03ba}" ; (κ) small kappa
764 dkGreekAlphabet.item["K"] := "{u+039a}" ; (Κ) capital kappa
765 dkGreekAlphabet.item["l"] := "{u+03bb}" ; (λ) small lambda
766 dkGreekAlphabet.item["L"] := "{u+039b}" ; (Λ) capital lambda
767 dkGreekAlphabet.item["m"] := "{u+03bc}" ; (μ) small mu
768 dkGreekAlphabet.item["M"] := "{u+039c}" ; (Μ) capital mu
769 dkGreekAlphabet.item["n"] := "{u+03bd}" ; (ν) small nu
770 dkGreekAlphabet.item["N"] := "{u+039d}" ; (Ν) capital nu
771 dkGreekAlphabet.item["x"] := "{u+03be}" ; (ξ) small xi
772 dkGreekAlphabet.item["X"] := "{u+039e}" ; (Ξ) capital xi
773 dkGreekAlphabet.item["o"] := "{u+03bf}" ; (ο) small omicron
774 dkGreekAlphabet.item["O"] := "{u+039f}" ; (Ο) capital omicron
775 dkGreekAlphabet.item["p"] := "{u+03c0}" ; (π) small pi
776 dkGreekAlphabet.item["P"] := "{u+03a0}" ; (Π) capital pi
777 dkGreekAlphabet.item["r"] := "{u+03c1}" ; (ρ) small rho
778 dkGreekAlphabet.item["R"] := "{u+03a1}" ; (Ρ) capital rho
779 dkGreekAlphabet.item["s"] := "{u+03c3}" ; (σ) small sigma
780 dkGreekAlphabet.item["S"] := "{u+03a3}" ; (Σ) capital sigma
781 dkGreekAlphabet.item[","] := "{u+03c2}" ; (ς) small sigma, in word-final position
782 dkGreekAlphabet.item[chr(0x00df)] := "{u+03c2}" ; (ß -> ς) small sigma, in word-final position
783 dkGreekAlphabet.item["t"] := "{u+03c4}" ; (τ) small tau
784 dkGreekAlphabet.item["T"] := "{u+03a4}" ; (Τ) capital tau
785 dkGreekAlphabet.item["u"] := "{u+03c5}" ; (υ) small upsilon
786 dkGreekAlphabet.item["U"] := "{u+03a5}" ; (Υ) capital upsilon
787 dkGreekAlphabet.item["y"] := "{u+03c5}" ; (υ) small upsilon
788 dkGreekAlphabet.item["Y"] := "{u+03a5}" ; (Υ) capital upsilon
789 dkGreekAlphabet.item["f"] := "{u+03c6}" ; (φ) small phi
790 dkGreekAlphabet.item["F"] := "{u+03a6}" ; (Φ) capital phi
791 dkGreekAlphabet.item["c"] := "{u+03c7}" ; (χ) small chi
792 dkGreekAlphabet.item["C"] := "{u+03a7}" ; (Χ) capital chi
793 dkGreekAlphabet.item["w"] := "{u+03c8}" ; (ψ) small psi
794 dkGreekAlphabet.item["W"] := "{u+03a8}" ; (Ψ) capital psi
795 dkGreekAlphabet.item["q"] := "{u+03c9}" ; (ω) small omega
796 dkGreekAlphabet.item["Q"] := "{u+03a9}" ; (Ω) capital omega
797 dkGreekAlphabet.item["1"] := "{u+00b9}" ; (¹) superscript 1
798 dkGreekAlphabet.item["2"] := "{u+00b2}" ; (²) superscript 2
799 dkGreekAlphabet.item["3"] := "{u+00b3}" ; (³) superscript 3
800 dkGreekAlphabet.item["4"] := "{u+2074}" ; (⁴) superscript 4
801 dkGreekAlphabet.item["5"] := "{u+2075}" ; (⁵) superscript 5
802 dkGreekAlphabet.item["6"] := "{u+2076}" ; (⁶) superscript 6
803 dkGreekAlphabet.item["7"] := "{u+2077}" ; (⁷) superscript 7
804 dkGreekAlphabet.item["8"] := "{u+2078}" ; (⁸) superscript 8
805 dkGreekAlphabet.item["9"] := "{u+2079}" ; (⁹) superscript 9
806 dkGreekAlphabet.item["0"] := "{u+2070}" ; (⁰) superscript 0
807 dkGreekAlphabet.item["-"] := "{u+207b}" ; (⁻) superscript -
808 dkGreekAlphabet.item["="] := "{u+207c}" ; (⁼) superscript =
809 dkGreekAlphabet.item["+"] := "{u+207a}" ; (⁺) superscript +
810 dkGreekAlphabet.item["["] := "{u+207d}" ; (⁽) superscript (
811 dkGreekAlphabet.item["]"] := "{u+207e}" ; (⁾) superscript )
812 dkGreekAlphabet.item["!"] := "{u+2081}" ; (₁) subscript 1
813 dkGreekAlphabet.item["@"] := "{u+2082}" ; (₂) subscript 2
814 dkGreekAlphabet.item["#"] := "{u+2083}" ; (₃) subscript 3
815 dkGreekAlphabet.item["$"] := "{u+2084}" ; (₄) subscript 4
816 dkGreekAlphabet.item["%"] := "{u+2085}" ; (₅) subscript 5
817 dkGreekAlphabet.item["^"] := "{u+2086}" ; (₆) subscript 6
818 dkGreekAlphabet.item["&"] := "{u+2087}" ; (₇) subscript 7
819 dkGreekAlphabet.item["*"] := "{u+2088}" ; (₈) subscript 8
820 dkGreekAlphabet.item["("] := "{u+2089}" ; (₉) subscript 9
821 dkGreekAlphabet.item[")"] := "{u+2080}" ; (₀) subscript 0
822 dkGreekAlphabet.item[";"] := "{u+208b}" ; (₋) subscript -
823 dkGreekAlphabet.item["'"] := "{u+208c}" ; (₌) subscript =
824 dkGreekAlphabet.item[chr(34)] := "{u+208a}" ; (₊) subscript +
825 dkGreekAlphabet.item["{"] := "{u+208d}" ; (₍) subscript (
826 dkGreekAlphabet.item["}"] := "{u+208e}" ; (₎) subscript )
827 dkGreekAlphabet.item["."] := "{u+00b5}" ; (µ) micro sign
828 dkGreekAlphabet.item[" "] := "{u+03bc}" ; (μ) small mu
829
830
831 ; Dead Key : Math Symbols
832
833 dkMathSymbols := ComObjCreate("Scripting.Dictionary")
834 dkMathSymbols.item["a"] := "{u+2200}" ; (∀) for all
835 dkMathSymbols.item["A"] := "{u+2200}" ; (∀) for all
836 dkMathSymbols.item["b"] := "{u+2286}" ; (⊆) subset of or equal to
837 dkMathSymbols.item["B"] := "{u+2287}" ; (⊇) superset of or equal to
838 dkMathSymbols.item["c"] := "{u+221d}" ; (∝) proportional to
839 dkMathSymbols.item["C"] := "{u+2102}" ; (ℂ) complex numbers
840 dkMathSymbols.item[chr(0x00e7)] := "{u+2245}" ; (ç -> ≅) congruent to
841 dkMathSymbols.item[chr(0x00c7)] := "{u+2247}" ; (Ç -> ≇) not congruent to
842 dkMathSymbols.item["d"] := "{u+2206}" ; (∆) increment operator
843 dkMathSymbols.item["D"] := "{u+2207}" ; (∇) nable/del operator
844 dkMathSymbols.item["e"] := "{u+2203}" ; (∃) there exists
845 dkMathSymbols.item["E"] := "{u+2204}" ; (∄) there does not exist
846 dkMathSymbols.item["f"] := "{u+0192}" ; (ƒ) f with hook
847 dkMathSymbols.item["F"] := "{u+220e}" ; (∎) end of proof
848 dkMathSymbols.item["g"] := "{u+2282}" ; (⊂) subset of
849 dkMathSymbols.item["G"] := "{u+2284}" ; (⊄) not a subset of
850 dkMathSymbols.item["h"] := "{u+2283}" ; (⊃) superset of
851 dkMathSymbols.item["H"] := "{u+2285}" ; (⊅) not a superset of
852 dkMathSymbols.item["i"] := "{u+221e}" ; (∞) infinity symbol
853 dkMathSymbols.item["I"] := "{u+2111}" ; (ℑ) imaginary numbers
854 dkMathSymbols.item["k"] := "{u+220b}" ; (∋) contains as member
855 dkMathSymbols.item["K"] := "{u+220c}" ; (∌) does not contain as member
856 dkMathSymbols.item["l"] := "{u+2225}" ; (∥) parallel to
857 dkMathSymbols.item["L"] := "{u+2226}" ; (∦) not parallel to
858 dkMathSymbols.item["m"] := "{u+2208}" ; (∈) element of
859 dkMathSymbols.item["M"] := "{u+2209}" ; (∉) not an element of
860 dkMathSymbols.item["n"] := "{u+207f}" ; (ⁿ) superscript n
861 dkMathSymbols.item["N"] := "{u+2115}" ; (ℕ) natural numbers
862 dkMathSymbols.item["o"] := "{u+2218}" ; (∘) ring operator
863 dkMathSymbols.item["O"] := "{u+2205}" ; (∅) empty set
864 dkMathSymbols.item["p"] := "{u+2202}" ; (∂) partial differential
865 dkMathSymbols.item["P"] := "{u+2119}" ; (ℙ) prime numbers
866 dkMathSymbols.item["q"] := "{u+211a}" ; (ℚ) rational numbers
867 dkMathSymbols.item["Q"] := "{u+211a}" ; (ℚ) rational numbers
868 dkMathSymbols.item["r"] := "{u+221a}" ; (√) square root
869 dkMathSymbols.item["R"] := "{u+211d}" ; (ℝ) real numbers
870 dkMathSymbols.item["s"] := "{u+2229}" ; (∩) set intersection
871 dkMathSymbols.item["S"] := "{u+222b}" ; (∫) integral symbol
872 dkMathSymbols.item["u"] := "{u+222a}" ; (∪) set union
873 dkMathSymbols.item["U"] := "{u+2216}" ; (∖) set minus
874 dkMathSymbols.item["w"] := "{u+2118}" ; (℘) Weierstrass elliptic function
875 dkMathSymbols.item["W"] := "{u+2118}" ; (℘) Weierstrass elliptic function
876 dkMathSymbols.item["z"] := "{u+21af}" ; (↯) downwards zigzag arrow
877 dkMathSymbols.item["Z"] := "{u+2124}" ; (ℤ) whole numbers
878 dkMathSymbols.item["1"] := "{u+2260}" ; (≠) not equal to
879 dkMathSymbols.item["!"] := "{u+2260}" ; (≠) not equal to
880 dkMathSymbols.item["2"] := "{u+221a}" ; (√) square root
881 dkMathSymbols.item["@"] := "{u+221a}" ; (√) square root
882 dkMathSymbols.item["3"] := "{u+221b}" ; (∛) cube root
883 dkMathSymbols.item["#"] := "{u+221b}" ; (∛) cube root
884 dkMathSymbols.item["4"] := "{u+221c}" ; (∜) fourth root
885 dkMathSymbols.item["$"] := "{u+221c}" ; (∜) fourth root
886 dkMathSymbols.item["5"] := "{u+2030}" ; (‰) per mille sign
887 dkMathSymbols.item["%"] := "{u+2031}" ; (‱) per ten thousand sign
888 dkMathSymbols.item["6"] := "{u+2220}" ; (∠) angle symbol
889 dkMathSymbols.item["^"] := "{u+2220}" ; (∠) angle symbol
890 dkMathSymbols.item["7"] := "{u+2227}" ; (∧) logical and
891 dkMathSymbols.item["&"] := "{u+2227}" ; (∧) logical and
892 dkMathSymbols.item["8"] := "{u+2297}" ; (⊗) tensor product
893 dkMathSymbols.item["*"] := "{u+2297}" ; (⊗) tensor product
894 dkMathSymbols.item["9"] := "{u+221f}" ; (∟) right angle
895 dkMathSymbols.item["("] := "{u+221f}" ; (∟) right angle
896 dkMathSymbols.item["0"] := "{u+2221}" ; (∡) measured angle
897 dkMathSymbols.item[")"] := "{u+2221}" ; (∡) measured angle
898 dkMathSymbols.item["``"] := "{u+2248}" ; (≈) almost equal to
899 dkMathSymbols.item["~"] := "{u+2248}" ; (≈) almost equal to
900 dkMathSymbols.item[","] := "{u+2264}" ; (≤) less-than or equal to
901 dkMathSymbols.item["<"] := "{u+2264}" ; (≤) less-than or equal to
902 dkMathSymbols.item["."] := "{u+2265}" ; (≥) greater-than or equal to
903 dkMathSymbols.item[">"] := "{u+2265}" ; (≥) greater-than or equal to
904 dkMathSymbols.item["-"] := "{u+2296}" ; (⊖) circled minus
905 dkMathSymbols.item["_"] := "{u+2298}" ; (⊘) circled division slash
906 dkMathSymbols.item["="] := "{u+225d}" ; (≝) equal to by definition
907 dkMathSymbols.item["+"] := "{u+2295}" ; (⊕) exclusive or
908 dkMathSymbols.item[chr(0x00d7)] := "{u+2261}" ; (× -> ≡) identical to
909 dkMathSymbols.item[chr(0x00f7)] := "{u+2262}" ; (÷ -> ≢) not identical to
910 dkMathSymbols.item[";"] := "{u+2235}" ; (∵) because sign
911 dkMathSymbols.item[":"] := "{u+2234}" ; (∴) therefore sign
912 dkMathSymbols.item["'"] := "{u+2032}" ; (′) prime
913 dkMathSymbols.item[chr(34)] := "{u+2033}" ; (″) double prime
914 dkMathSymbols.item["/"] := "{u+2034}" ; (‴) triple prime
915 dkMathSymbols.item["?"] := "{u+2057}" ; (⁗) quadruple prime
916 dkMathSymbols.item["\"] := "{u+2228}" ; (∨) logical or
917 dkMathSymbols.item["|"] := "{u+2228}" ; (∨) logical or
918 dkMathSymbols.item[" "] := "{u+221a}" ; (√) square root
919
920
921 ; Configuration : 'Right Alt' and 'Right Alt + Shift' on US QWERTY
922
923 >!a::
924 if GetKeyState("CapsLock", "T")
925 Send {u+00c4} ; (Ä) A with diaeresis
926 else
927 Send {u+00e4} ; (ä) a with diaeresis
928 return
929 >!+a::
930 if GetKeyState("CapsLock", "T")
931 Send {u+00e4} ; (ä) a with diaeresis
932 else
933 Send {u+00c4} ; (Ä) A with diaeresis
934 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey
935 return
936
937 >!q::
938 if GetKeyState("CapsLock", "T")
939 Send {u+00c6} ; (Æ) letter AE
940 else
941 Send {u+00e6} ; (æ) letter ae
942 return
943 >!+q::
944 if GetKeyState("CapsLock", "T")
945 Send {u+00e6} ; (æ) letter ae
946 else
947 Send {u+00c6} ; (Æ) letter AE
948 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey
949 return
950
951 >!w::
952 if GetKeyState("CapsLock", "T")
953 Send {u+00c5} ; (Å) A with ring above
954 else
955 Send {u+00e5} ; (å) a with ring above
956 return
957 >!+w::
958 if GetKeyState("CapsLock", "T")
959 Send {u+00e5} ; (å) a with ring above
960 else
961 Send {u+00c5} ; (Å) A with ring above
962 Send {blind}{vkE8}
963 return
964
965 >!z::
966 if GetKeyState("CapsLock", "T")
967 Send {u+00c0} ; (À) A with grave
968 else
969 Send {u+00e0} ; (à) a with grave
970 return
971 >!+z::
972 if GetKeyState("CapsLock", "T")
973 Send {u+00e0} ; (à) a with grave
974 else
975 Send {u+00c0} ; (À) A with grave
976 Send {blind}{vkE8}
977 return
978
979 >!x::
980 if GetKeyState("CapsLock", "T")
981 Send {u+00c1} ; (Á) A with acute
982 else
983 Send {u+00e1} ; (á) a with acute
984 return
985 >!+x::
986 if GetKeyState("CapsLock", "T")
987 Send {u+00e1} ; (á) a with acute
988 else
989 Send {u+00c1} ; (Á) A with acute
990 Send {blind}{vkE8}
991 return
992
993 >!c::
994 if GetKeyState("CapsLock", "T")
995 Send {u+00c7} ; (Ç) C with cedilla
996 else
997 Send {u+00e7} ; (ç) c with cedilla
998 return
999 >!+c::
1000 if GetKeyState("CapsLock", "T")
1001 Send {u+00e7} ; (ç) c with cedilla
1002 else
1003 Send {u+00c7} ; (Ç) C with cedilla
1004 Send {blind}{vkE8}
1005 return
1006
1007 >!d::
1008 if GetKeyState("CapsLock", "T")
1009 Send {u+00d0} ; (Ð) capital letter eth
1010 else
1011 Send {u+00f0} ; (ð) small letter eth
1012 return
1013 >!+d::
1014 if GetKeyState("CapsLock", "T")
1015 Send {u+00f0} ; (ð) small letter eth
1016 else
1017 Send {u+00d0} ; (Ð) capital letter eth
1018 Send {blind}{vkE8}
1019 return
1020
1021 >!e::
1022 if GetKeyState("CapsLock", "T")
1023 Send {u+00cb} ; (Ë) E with diaeresis
1024 else
1025 Send {u+00eb} ; (ë) e with diaeresis
1026 return
1027 >!+e::
1028 if GetKeyState("CapsLock", "T")
1029 Send {u+00eb} ; (ë) e with diaeresis
1030 else
1031 Send {u+00cb} ; (Ë) E with diaeresis
1032 Send {blind}{vkE8}
1033 return
1034
1035 >!f::
1036 if GetKeyState("CapsLock", "T")
1037 Send {u+00c8} ; (È) E with grave
1038 else
1039 Send {u+00e8} ; (è) e with grave
1040 return
1041 >!+f::
1042 if GetKeyState("CapsLock", "T")
1043 Send {u+00e8} ; (è) e with grave
1044 else
1045 Send {u+00c8} ; (È) E with grave
1046 Send {blind}{vkE8}
1047 return
1048
1049 >!g::
1050 if GetKeyState("CapsLock", "T")
1051 Send {u+00c9} ; (É) E with acute
1052 else
1053 Send {u+00e9} ; (é) e with acute
1054 return
1055 >!+g::
1056 if GetKeyState("CapsLock", "T")
1057 Send {u+00e9} ; (é) e with acute
1058 else
1059 Send {u+00c9} ; (É) E with acute
1060 Send {blind}{vkE8}
1061 return
1062
1063 >!i::
1064 if GetKeyState("CapsLock", "T")
1065 Send {u+00cf} ; (Ï) I with diaeresis
1066 else
1067 Send {u+00ef} ; (ï) i with diaeresis
1068 return
1069 >!+i::
1070 if GetKeyState("CapsLock", "T")
1071 Send {u+00ef} ; (ï) i with diaeresis
1072 else
1073 Send {u+00cf} ; (Ï) I with diaeresis
1074 Send {blind}{vkE8}
1075 return
1076
1077 >!v::
1078 if GetKeyState("CapsLock", "T")
1079 Send {u+00cc} ; (Ì) I with grave
1080 else
1081 Send {u+00ec} ; (ì) i with grave
1082 return
1083 >!+v::
1084 if GetKeyState("CapsLock", "T")
1085 Send {u+00ec} ; (ì) i with grave
1086 else
1087 Send {u+00cc} ; (Ì) I with grave
1088 Send {blind}{vkE8}
1089 return
1090
1091 >!b::
1092 if GetKeyState("CapsLock", "T")
1093 Send {u+00cd} ; (Í) I with acute
1094 else
1095 Send {u+00ed} ; (í) i with acute
1096 return
1097 >!+b::
1098 if GetKeyState("CapsLock", "T")
1099 Send {u+00ed} ; (í) i with acute
1100 else
1101 Send {u+00cd} ; (Í) I with acute
1102 Send {blind}{vkE8}
1103 return
1104
1105 >!n::
1106 if GetKeyState("CapsLock", "T")
1107 Send {u+00d1} ; (Ñ) N with tilde
1108 else
1109 Send {u+00f1} ; (ñ) n with tilde
1110 return
1111 >!+n::
1112 if GetKeyState("CapsLock", "T")
1113 Send {u+00f1} ; (ñ) n with tilde
1114 else
1115 Send {u+00d1} ; (Ñ) N with tilde
1116 Send {blind}{vkE8}
1117 return
1118
1119 >!o::
1120 if GetKeyState("CapsLock", "T")
1121 Send {u+00d6} ; (Ö) O with diaeresis
1122 else
1123 Send {u+00f6} ; (ö) o with diaeresis
1124 return
1125 >!+o::
1126 if GetKeyState("CapsLock", "T")
1127 Send {u+00f6} ; (ö) o with diaeresis
1128 else
1129 Send {u+00d6} ; (Ö) O with diaeresis
1130 Send {blind}{vkE8}
1131 return
1132
1133 >!k::
1134 if GetKeyState("CapsLock", "T")
1135 Send {u+0152} ; (Œ) ligature OE
1136 else
1137 Send {u+0153} ; (œ) ligature oe
1138 return
1139 >!+k::
1140 if GetKeyState("CapsLock", "T")
1141 Send {u+0153} ; (œ) ligature oe
1142 else
1143 Send {u+0152} ; (Œ) ligature OE
1144 Send {blind}{vkE8}
1145 return
1146
1147 >!l::
1148 if GetKeyState("CapsLock", "T")
1149 Send {u+00d8} ; (Ø) O with stroke
1150 else
1151 Send {u+00f8} ; (ø) o with stroke
1152 return
1153 >!+l::
1154 if GetKeyState("CapsLock", "T")
1155 Send {u+00f8} ; (ø) o with stroke
1156 else
1157 Send {u+00d8} ; (Ø) O with stroke
1158 Send {blind}{vkE8}
1159 return
1160
1161 >!,::
1162 if GetKeyState("CapsLock", "T")
1163 Send {u+00d2} ; (Ò) O with grave
1164 else
1165 Send {u+00f2} ; (ò) o with grave
1166 return
1167 >!<::
1168 if GetKeyState("CapsLock", "T")
1169 Send {u+00f2} ; (ò) o with grave
1170 else
1171 Send {u+00d2} ; (Ò) O with grave
1172 Send {blind}{vkE8}
1173 return
1174
1175 >!.::
1176 if GetKeyState("CapsLock", "T")
1177 Send {u+00d3} ; (Ó) O with acute
1178 else
1179 Send {u+00f3} ; (ó) o with acute
1180 return
1181 >!>::
1182 if GetKeyState("CapsLock", "T")
1183 Send {u+00f3} ; (ó) o with acute
1184 else
1185 Send {u+00d3} ; (Ó) O with acute
1186 Send {blind}{vkE8}
1187 return
1188
1189 >!t::
1190 if GetKeyState("CapsLock", "T")
1191 Send {u+00de} ; (Þ) capital letter thorn
1192 else
1193 Send {u+00fe} ; (þ) small letter thorn
1194 return
1195 >!+t::
1196 if GetKeyState("CapsLock", "T")
1197 Send {u+00fe} ; (þ) small letter thorn
1198 else
1199 Send {u+00de} ; (Þ) capital letter thorn
1200 Send {blind}{vkE8}
1201 return
1202
1203 >!u::
1204 if GetKeyState("CapsLock", "T")
1205 Send {u+00dc} ; (Ü) U with diaeresis
1206 else
1207 Send {u+00fc} ; (ü) u with diaeresis
1208 return
1209 >!+u::
1210 if GetKeyState("CapsLock", "T")
1211 Send {u+00fc} ; (ü) u with diaeresis
1212 else
1213 Send {u+00dc} ; (Ü) U with diaeresis
1214 Send {blind}{vkE8}
1215 return
1216
1217 >!h::
1218 if GetKeyState("CapsLock", "T")
1219 Send {u+00d9} ; (Ù) U with grave
1220 else
1221 Send {u+00f9} ; (ù) u with grave
1222 return
1223 >!+h::
1224 if GetKeyState("CapsLock", "T")
1225 Send {u+00f9} ; (ù) u with grave
1226 else
1227 Send {u+00d9} ; (Ù) U with grave
1228 Send {blind}{vkE8}
1229 return
1230
1231 >!j::
1232 if GetKeyState("CapsLock", "T")
1233 Send {u+00da} ; (Ú) U with acute
1234 else
1235 Send {u+00fa} ; (ú) u with acute
1236 return
1237 >!+j::
1238 if GetKeyState("CapsLock", "T")
1239 Send {u+00fa} ; (ú) u with acute
1240 else
1241 Send {u+00da} ; (Ú) U with acute
1242 Send {blind}{vkE8}
1243 return
1244
1245 >!y::
1246 if GetKeyState("CapsLock", "T")
1247 Send {u+0178} ; (Ÿ) Y with diaeresis
1248 else
1249 Send {u+00ff} ; (ÿ) y with diaeresis
1250 return
1251 >!+y::
1252 if GetKeyState("CapsLock", "T")
1253 Send {u+00ff} ; (ÿ) y with diaeresis
1254 else
1255 Send {u+0178} ; (Ÿ) Y with diaeresis
1256 Send {blind}{vkE8}
1257 return
1258
1259 >!r::
1260 if GetKeyState("CapsLock", "T")
1261 Send {u+00dd} ; (Ý) Y with acute
1262 else
1263 Send {u+00fd} ; (ý) y with acute
1264 return
1265 >!+r::
1266 if GetKeyState("CapsLock", "T")
1267 Send {u+00fd} ; (ý) y with acute
1268 else
1269 Send {u+00dd} ; (Ý) Y with acute
1270 Send {blind}{vkE8}
1271 return
1272
1273 >!p::Send {u+2020} ; (†) dagger
1274 >!+p::
1275 Send {u+2021} ; (‡) double dagger
1276 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey
1277 return
1278
1279 >!s::Send {u+00df} ; (ß) small sharp s (Eszett)
1280 >!+s::
1281 Send {u+00a7} ; (§) section sign
1282 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey
1283 return
1284
1285 >!1::Send {u+00a1} ; (¡) inverted exclamation mark
1286 >!+1::
1287 Send {u+00b9} ; (¹) superscript 1
1288 Send {blind}{vkE8}
1289 return
1290
1291 >!2::Send {u+00a9} ; (©) copyright sign
1292 >!+2::
1293 Send {u+00b2} ; (²) superscript 2
1294 Send {blind}{vkE8}
1295 return
1296
1297 >!3::Send {u+00b1} ; (±) plus-minus sign
1298 >!+3::
1299 Send {u+00b3} ; (³) superscript 3
1300 Send {blind}{vkE8}
1301 return
1302
1303 >!4::Send {u+00a3} ; (£) pound sign
1304 >!+4::
1305 Send {u+00a5} ; (¥) yen sign
1306 Send {blind}{vkE8}
1307 return
1308
1309 >!5::Send {u+20ac} ; (€) euro sign
1310 >!+5::
1311 Send {u+00a2} ; (¢) cent sign (dollar)
1312 Send {blind}{vkE8}
1313 return
1314
1315 >!8::Send {u+201e} ; („) double low-9 quotation mark
1316 >!+8::
1317 Send {u+00b6} ; (¶) pilcrow sign
1318 Send {blind}{vkE8}
1319 return
1320
1321 >!9::Send {u+201c} ; (“) left double quotation mark
1322 >!+9::
1323 Send {u+2018} ; (‘) left single quotation mark
1324 Send {blind}{vkE8}
1325 return
1326
1327 >!0::Send {u+201d} ; (”) right double quotation mark
1328 >!+0::
1329 Send {u+2019} ; (’) right single quotation mark
1330 Send {blind}{vkE8}
1331 return
1332
1333 >!=::Send {u+00d7} ; (×) multiplication sign
1334 >!+=::
1335 Send {u+00f7} ; (÷) division sign
1336 Send {blind}{vkE8}
1337 return
1338
1339 >![::Send {u+00ab} ; («) left-pointing double angle quotation mark
1340 >!{::
1341 Send {u+2039} ; (‹) left-pointing single angle quotation mark
1342 Send {blind}{vkE8}
1343 return
1344
1345 >!]::Send {u+00bb} ; (») right-pointing double angle quotation mark
1346 >!}::
1347 Send {u+203a} ; (›) right-pointing single angle quotation mark
1348 Send {blind}{vkE8}
1349 return
1350
1351 >!;::Send {u+00b0} ; (°) degree sign
1352 >!+;::
1353 Send {u+00b7} ; (·) middle dot
1354 Send {blind}{vkE8}
1355 return
1356
1357 >!/::Send {u+00bf} ; (¿) inverted question mark
1358 >!?::
1359 Send {u+2026} ; (…) horizontal ellipsis
1360 Send {blind}{vkE8}
1361 return
1362
1363 >!space::Send {u+00a0} ; non-breaking space
1364 >!+space::
1365 Send {u+00a0} ; non-breaking space
1366 Send {blind}{vkE8}
1367 return
1368
1369
1370 ; Configuration : Dead Keys on 'Right Alt' and 'Right Alt + Shift'
1371
1372 >!6::
1373 Send {blind}{vkE8} ; suppresses circles around mouse pointer
1374 Input, key, L1, {bs}{del}{esc}{home}{end}
1375 Send % dkCircumflex.item[key]
1376 key := "" ; avoids leaking content via debug properties
1377 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey (for second character with 'Right Alt + Shift')
1378 return
1379 >!+6::
1380 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey
1381 Input, key, L1, {bs}{del}{esc}{home}{end}
1382 Send % dkCaron.item[key]
1383 key := "" ; avoids leaking content via debug properties
1384 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey (for second character with 'Right Alt + Shift')
1385 return
1386
1387 >!7::
1388 Send {blind}{vkE8}
1389 Input, key, L1, {bs}{del}{esc}{home}{end}
1390 Send % dkDotAbove.item[key]
1391 key := ""
1392 Send {blind}{vkE8}
1393 return
1394 >!+7::
1395 Send {blind}{vkE8}
1396 Input, key, L1, {bs}{del}{esc}{home}{end}
1397 Send % dkMacronStroke.item[key]
1398 key := ""
1399 Send {blind}{vkE8}
1400 return
1401
1402 >!-::
1403 Send {blind}{vkE8}
1404 Input, key, L1, {bs}{del}{esc}{home}{end}
1405 Send % dkCedillaOgonek.item[key]
1406 key := ""
1407 Send {blind}{vkE8}
1408 return
1409 >!_::
1410 Send {blind}{vkE8}
1411 Input, key, L1, {bs}{del}{esc}{home}{end}
1412 Send % dkBreveSpecial.item[key]
1413 key := ""
1414 Send {blind}{vkE8}
1415 return
1416
1417 >!'::
1418 Send {blind}{vkE8}
1419 Input, key, L1, {bs}{del}{esc}{home}{end}
1420 Send % dkAcuteAccent.item[key]
1421 key := ""
1422 Send {blind}{vkE8}
1423 return
1424 >!"::
1425 Send {blind}{vkE8}
1426 Input, key, L1, {bs}{del}{esc}{home}{end}
1427 Send % dkDiaeresis.item[key]
1428 key := ""
1429 Send {blind}{vkE8}
1430 return
1431
1432 >!`::
1433 Send {blind}{vkE8}
1434 Input, key, L1, {bs}{del}{esc}{home}{end}
1435 Send % dkGraveAccent.item[key]
1436 key := ""
1437 Send {blind}{vkE8}
1438 return
1439 >!~::
1440 Send {blind}{vkE8}
1441 Input, key, L1, {bs}{del}{esc}{home}{end}
1442 Send % dkTilde.item[key]
1443 key := ""
1444 Send {blind}{vkE8}
1445 return
1446
1447 >!\::
1448 Send {blind}{vkE8}
1449 Input, key, L1, {bs}{del}{esc}{home}{end}
1450 Send % dkNotSign.item[key]
1451 key := ""
1452 Send {blind}{vkE8}
1453 return
1454 >!|::
1455 Send {blind}{vkE8}
1456 Input, key, L1, {bs}{del}{esc}{home}{end}
1457 Send % dkBrokenBar.item[key]
1458 key := ""
1459 Send {blind}{vkE8}
1460 return
1461
1462 >!m::
1463 Send {blind}{vkE8}
1464 Input, key, L1, {bs}{del}{esc}{home}{end}
1465 Send % dkGreekAlphabet.item[key]
1466 key := ""
1467 Send {blind}{vkE8}
1468 return
1469 >!+m::
1470 Send {blind}{vkE8}
1471 Input, key, L1, {bs}{del}{esc}{home}{end}
1472 Send % dkMathSymbols.item[key]
1473 key := ""
1474 Send {blind}{vkE8}
1475 return